home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- //Borland C++Builder
- //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
- //----------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #ifndef lookupH
- #define lookupH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\ExtCtrls.hpp>
- #include <vcl\DBCtrls.hpp>
- #include <vcl\Menus.hpp>
- #include <vcl\DBGrids.hpp>
- #include <vcl\Grids.hpp>
- //---------------------------------------------------------------------------
- class TfmLookup : public TForm
- {
- __published: // IDE-managed Components
- TPanel *Panel1;
- TDBNavigator *DBNavigator1;
- TMainMenu *MainMenu1;
- TMenuItem *About1;
- TPanel *Panel2;
- TDBGrid *DBGrid1;
- void __fastcall About1Click(TObject *Sender);
- private: // User declarations
- public: // User declarations
- virtual __fastcall TfmLookup(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TfmLookup *fmLookup;
- //---------------------------------------------------------------------------
- #endif
-